body {
    /* background-image: url("src\assets\star background.svg"); */
    font-family: "Creepster", system-ui;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100%;
    padding: 0%;
    margin: 0%;
    overflow-x: hidden;
    /* scroll-behavior: auto !important;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: none; */
}
.scrolling-headline {
    position: fixed;
    width: 100%; /* Take up full width of the viewport */
    overflow: hidden;
    background: linear-gradient(to right, #a5e5fc, rgb(161, 161, 252));  /* Bright background for visibility */
    padding: 10px 0;
    text-align: center;
    top: 0;
    height: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40rem;
    text-decoration: none;
  }
  
/* Scrolling text animation */
.scrolling-headline p {
    display: inline-block;
    white-space: nowrap;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2vw;
    animation: scroll-horizontal 15s linear infinite; /* Scrolling animation */
}
  
/* Animation keyframes */
@keyframes scroll-horizontal {
    0% {
      transform: translateX(100%); /* Start outside the right of the screen */
    }
    100% {
      transform: translateX(-100%); /* Move outside the left of the screen */
    }
}
header {
    /* position: fixed; */
    z-index: 100;
    top: 30px;
    left: 0;
    right: 0;
    padding: .5rem 9rem;
    position: sticky;
    margin-top: 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo img {
    /* width: 100%;
    height: 100%; */
    width: 6.3vw;
    height: 6.3vw;
    cursor: pointer;
}
header .nav-list ul {
    display: flex;
    /* flex-direction: row; */
    font-size: 2.1466vw;
    font-weight: 400;
    line-height: normal;
    /* letter-spacing: -.0215rem; */
    align-items: center;
    gap: 1rem;
}
header .nav-list ul li {
    padding: 15px 2rem;
    list-style: none;
    color: white;
    text-decoration: none;
    justify-content: center;
}
header .nav-list ul li a {
    text-decoration: none;
    color: white;
    transition: .35s ease;
}
header .nav-list ul li a:hover {
    color: #B7FCB1;
}
header .nav-list ul .buy-button {
    border-radius: 15px;
    /* height: 70px; */
    color: black;
    background: #B7FCB1;
    /* stroke: 1px solid #9A2FBE; */
    box-shadow: 4px 4px #ffffff;
    display: flex;
    height: 3.9341rem;
    padding: 0rem 1.6392rem;
    justify-content: center;
    align-items: center;
    border: .082rem solid #9A2FBE;
    /* box-shadow: .3278rem .3278rem #000; */ 
    transition: .35s ease;
    background-size: cover;
    text-decoration: none;
}
header .nav-list ul .buy-button:hover {
    box-shadow: none;
    background-color: #65fc57;
    transform: translate(2px, 2px);
}
main {
    display: flex;
    flex-direction: column;
    /* unicode-bidi: isolate; */
    position: relative;
    left: 0;
    width: 100%;
    margin: auto;
    padding: 0;
    gap: 0;
}
.alien-spaceship, .hero-alien {
    animation-name: slideUp;
    animation-name: slideUp;
    animation-duration: 1s;
    animation-duration: 1s;
    visibility: visible;
}
@keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
}
  
main .hero-section {
    position: relative;
    height: 100vh;
    padding: 1rem 9rem;
}
main .hero-section .hero-background {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 100;
    transform: translate(0px, 0px);
    position: absolute;
    top: -30%;
    right: 0;
    object-fit: cover;
    width: 100%;
    pointer-events: none;
    height: 150%;
}
main .hero-section .ellipse {
    transform: translate(-10%, 0px);
    width: 50vw;
    position: absolute;
    left: 0;
    top: -12rem;
    pointer-events: none;
}
main .hero-section .hero-alien {
    position: absolute;
    right: -2rem;
    bottom: 0;
    width: 50vw;
    /* animation: floatUpDown 3s ease-in-out infinite; */
}
.moblie-cholian {
    display: none;
}
/* Define the floating animation */

@keyframes floatUpDown {
    0% {
        top: -10rem;
    }
    50% {
        top: -9rem;
    }
    100% { 
        top: -10rem;
    }
}
main .hero-section .alien-spaceship {
    position: absolute;
    left: 7rem;
    top: 10%;
    width: 25vw;
    animation: floatUpDown 3s ease-in-out infinite;
}
main .hero-section .hero-content {
    position: absolute;
    left: 9rem;
    transform: translateY(100%);
    justify-content: space-between;
    display: flex;
    gap: 20vw;
    width: 100%;
    /* display: flex;
    justify-content: flex-end;
    flex-direction: column; */
}
main .hero-section .hero-content h1 {
    font-size: 1.25vw;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: white;
    width: auto;
}
main .hero-section .hero-content h1 span:first-of-type {
    font-family: "Creepster", system-ui;
    font-weight: 400;
    color: #9A2FBE;
    font-size: 2vw;
}
main .hero-section .hero-content h1 span:nth-of-type(2) {
    font-family: "Creepster", system-ui;
    font-weight: 400;
    color: #B7FCB1;
    font-size: 2vw;
}
main .hero-section .hero-content h6 {
    font-size: 12.5vw;
    color: #B7FCB1;
    text-shadow: 0.5rem 0.5rem #9A2FBE;
    position: absolute;
    left: 0;
    top: -26vw;
}
main .hero-section .hero-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.5vw;
    width: 50%;
    position: absolute;
    left: 0;
    top: 17vw;
    color: white;
}
main .hero-section .hero-content a {
    border-radius: 15px;
    /* height: 70px; */
    color: black;
    background: #B7FCB1;
    /* stroke: 1px solid #9A2FBE; */
    box-shadow: 4px 4px #ffffff;
    display: flex;
    height: 5vw;
    padding: 0rem 3.6392rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.9375remrem;
    border: .082rem solid #9A2FBE;
    /* box-shadow: .3278rem .3278rem #000; */ 
    transition: .35s ease;
    /* mix-blend-mode: color-dodge; */
    background-size: cover;
    text-decoration: none;  
    position: absolute;
    top: 27.5vw;
    font-size: 2.1466vw;
}
main .hero-section .hero-content a:hover {
    box-shadow: none;
    background-color: #65fc57;
    transform: translate(2px, 2px);
}
main .about-us {
    position: relative;
    height: 104.5vw;
    padding: 0rem 9rem;
    margin: 0;
}
main h1:not(#first-h1) {
    font-size: 5vw;
    font-weight: 100;
    /* margin-left: 0; */
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}
main .about-us h1 {
    top: -4%;
    text-shadow: 0.3rem 0.3rem #9A2FBE;
    color: white;
}
main .about-us .aboutus-background {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 100;
    transform: translate(0px, 0px);
    position: absolute;
    left: 0;
    top: -10%;
    object-fit: cover;
    width: 100%;
    pointer-events: none;
    z-index: 0;
    height: auto;
}
main .about-us .aboutus-1,
main .about-us .aboutus-2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    left: 0;
    top: 0%;
    gap: 2vw;
}
main .about-us .aboutus-1 img,
main .about-us .aboutus-2 img {
    width: 40%;
}
main .about-us p {
    font-size: 1.25vw;
    padding-top: 2%;
    color: white;
}
main .about-us p span {
    font-weight: 900;
    font-style: italic;
}
main .about-us #aboutus-2 {
    top: -5%;
    flex-direction: row-reverse;
}
main .tokenomics {
    position: relative;
    height: 104.5rem;
    padding: 1rem 9rem;
    left: 0;
    margin-top: -49%;
}
main .tokenomics .tokenomics-background {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    position: absolute;
    right: 0;
    object-fit: cover;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}
main .tokenomics h1 {
    /* top: -88rem; */
    top: 7%;
    text-shadow: 0.3rem 0.3rem #9A2FBE;
    color: white;
}
main .tokenomics .pie-chart {
    position: relative;
    padding: 1rem 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    top: 16%;
}
main .tokenomics .pie-chart img {
    width: 80%;
    min-width: 90%;
}
main .tokenomics .pie-chart #mobile-pizza {
    display: none;
}
main .roadmap {
    position: relative;
    background-color: #B7FCB1;
    overflow: hidden;
    height: 70rem;
    left: 0;
    margin-top: -44%;
    transition: 0.5s ease;
}
@media screen and (max-width: 1430px) {
    main .roadmap {
        margin-top: -60%;
        transition: 0.5s ease;
    }
}
@media screen and (max-width: 1280px) {
    main .roadmap {
        margin-top: -75%;
        transition: 0.5s ease;
    }
}
@media screen and (max-width: 1140px) {
    main .roadmap {
        margin-top: -90%;
        transition: 0.5s ease;
    }
}
@media screen and (max-width: 945px) {
    main .roadmap {
        top: 2000%;
        transition: 0.5s ease;
    }
}
main .roadmap h1 {
    top: 4rem;
    text-shadow: 0.3rem 0.3rem black;
    color: #9A2FBE;
}
main .roadmap img {
    position: relative;
    margin: auto;
    right: 0;
    top: -100px;
    width: 100%;
    height: 100%;
    scale: 1.1;
    pointer-events: none;
}
main .roadmap .mobile-roadmap {
    display: none;
}
main .roadmap span {
    cursor: pointer;
    position: absolute;
    padding: 2rem;
    width: 100px;
    height: 100px;
    box-shadow: 4px 4px #000000;
    z-index: 10;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-direction: column;
    transition: .35s ease;
}
main .roadmap span img:first-of-type {
    position: absolute;
    scale: 0.8;
    margin: auto;
    transform: translateY(80%);
}
main .roadmap .phase-1 {
    background-color: #9A2FBE;
    left: 10%;
    top: 47%;
}
main .roadmap .phase-1:hover {
    background-color: #c028f3;
    transform: translate(4px, 4px);
    box-shadow: none;
}
main .roadmap .phase-2 {
    background-color: #FB9805;
    left: 30%;
    top: 32%;
    opacity: .5;
    box-shadow: none;
    cursor: default;
}
main .roadmap .phase-2:hover {
    background-color: #fcb447;
    /* transform: translate(4px, 4px); */
    box-shadow: none;
}
main .roadmap .phase-3 {
    background-color: #0000FF;
    left: 47.5%;
    top: 48.5%;
    opacity: .5;
    box-shadow: none;
    cursor: default;
}
main .roadmap .phase-3:hover {
    background-color: #3a3afb;
    /* transform: translate(4px, 4px); */
    box-shadow: none;
}
main .roadmap .phase-4 {
    background-color: white;
    left: 66%;
    top: 30%;
    opacity: .5;
    box-shadow: none;
    cursor: default;
}
main .roadmap .phase-4:hover {
    background-color: rgb(240, 240, 240);
    /* transform: translate(4px, 4px); */
    box-shadow: none;
}
main .roadmap .phase-5 {
    background-color: #35B4DE;
    left: 84.5%;
    top: 50%;
    opacity: .5;
    box-shadow: none;
    cursor: default;
}
main .roadmap .phase-5:hover {
    background-color: #0db6ee;
    /* transform: translate(4px, 4px); */
    box-shadow: none;
}
@media screen and (max-width: 1490px) {
    main .roadmap span {
        transform: scale(0.8);
    }
    main .roadmap .phase-2 {
        left: 30%;
        top: 32%;
    }
    main .roadmap .phase-5 {
        left: 84%;
        top: 48%;
    }
}

main .blur-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    transition: .2s ease;
    background-color: rgba(0, 0, 0, 0.403);
    backdrop-filter: blur(10px);
    overflow: visible;
}


/* Popup container */
main .blur-bg #phase-popup {
    width: 50%;
    max-width: 80%;
    overflow: hidden;
    animation: slide-in 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 30px;
    box-shadow: 1px 1px 100px rgba(0, 0, 0, 0.583);
    box-sizing: border-box;
    padding: 0rem 3rem 3rem 3rem;
    gap: 1rem;
    z-index: 20;
    position: absolute;
}
main .blur-bg .phase-popup1 {
    background-color: #9A2FBE;
}
main .blur-bg .phase-popup2 {
    background-color: #FB9805;
}
main .blur-bg .phase-popup3 {
    background-color: #0000FF;
}
main .blur-bg .phase-popup4 {
    background-color: #ffffff;
}
main .blur-bg .phase-popup5 {
    background-color: #35B4DE;
}

/* Header of the popup */
main .blur-bg #phase-popup .phase-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    flex-direction: row;
    position: relative;
    padding: 0;
    margin: 0;
    height: 10rem;
}
main .blur-bg #phase-popup .phase-popup-header h2 {
    font-size: 5vw;
    font-weight: 100;
    color: #fff;
    /* margin-top: 10%; */
}
/* Cancel button in the header */
main .blur-bg #phase-popup .phase-popup-header .cancel-button {
    background: none;
    cursor: pointer;
    outline: none;
    box-shadow: 4px 4px white;
    border-radius: 15px;
    display: flex;
    height: 3.9341rem;
    width: 3.9341rem;
    padding: 1.6392rem 1.6392rem;
    justify-content: center;
    align-items: center;
    border: .082rem solid white; 
    transition: .2s ease;
}
main .blur-bg #phase-popup .phase-popup-header .cancel-button:hover {
    box-shadow: none;
    transform: translate(2px, 2px);
}
main .blur-bg #phase-popup .phase-popup-header .cancel-button img {
    width: 10rem;
    pointer-events: none;
}

/* Popup body */
main .blur-bg #phase-popup .phase-popup-body {
    padding-right: 0.5rem;
    padding-left: 0rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2%;
}

main .blur-bg #phase-popup .phase-popup-body img {
    width: 40%;
    height: auto;
}

main .blur-bg #phase-popup .phase-popup-body ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 60%;
    gap: .2rem;
}
main .blur-bg #phase-popup .phase-popup-body ul li {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.3vw;
    color: white;
    line-height: 1.5;
    text-align: left;
    white-space: pre-line;
}
main .blur-bg span{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}

/* Keyframe animation for popup */
@keyframes slide-in {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* main .blur-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.403);
    backdrop-filter: blur(10px);
    overflow: visible;
    z-index: 500;
    position: fixed;
    top: 0%;
}
main .blur-bg .phase-popup {
    width: 50%;
    height: 50vh;
    position: absolute;
    transform: translate(50%, 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #9A2FBE;
    border-radius: 30px;
    box-shadow: 1px 1px 50px black;
    margin: 2rem;
    box-sizing: border-box;
}
main .blur-bg .phase-popup .phase-popup-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
main .blur-bg .phase-popup .phase-popup-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
main .blur-bg .phase-popup .phase-popup-body img {
    margin-bottom: 0;
    width: 30vw;
} */
main .buy-token {
    position: relative;
    height: auto;
    padding: 1rem 9rem;
    left: 0;
    margin-top: -10%;
    z-index: 20;
}
main .buy-token .buycholitos-background {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    position: absolute;
    right: 0;
    object-fit: cover;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}
main .buy-token h1 {
    /* top: -88rem; */
    top: 7%;
    text-shadow: 0.3rem 0.3rem black;
    color: #0db6ee;
}
main .buy-token .buy-image {
    position: relative;
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin: auto;
}
main .buy-token .buy-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 18%;
    animation: shake 1s infinite;
    /* max-width: 100%; */
}
@keyframes shake {
    0% { transform: translateX(0); }
    10% { transform: translateX(-5px); }
    20% { transform: translateX(5px); }
    30% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
    60% { transform: translateX(5px); }
    70% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    90% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

main .team {
    position: relative;
    overflow: hidden;
    height: auto;
    left: 0;
    background-color: #E8D040;
    display: flex;
    justify-content: center;
    margin: auto;
    width: 100%;
    padding-top: 5%;
}
main .team #team {
    text-shadow: 0.3rem 0.3rem black;
    color: white;
}
main .team .team-embers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15rem;
    box-sizing: content-box;
    gap: 2rem;
}
main .team .team-embers img {
    width: 15vw;
}
main .team a {
    border-radius: 15px;
    color: black;
    background: #ffffff;
    box-shadow: 4px 4px #000000;
    display: flex;
    height: 5vw;
    padding: 0rem 3.6392rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.9375remrem;
    border: .082rem solid #000000;
    transition: .35s ease;
    background-size: cover;
    text-decoration: none;  
    bottom: 5%;
    font-size: 2.1466vw;
    position: absolute;
    margin: auto;
}
main .team a:hover {
    box-shadow: none;
    background-color: #E8D040;
    transform: translate(2px, 2px);
}


/* New teams style */

/* main .team .teamer {
    padding: 9rem;
}
main .team .teamer .team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2%;
    margin-top: 10%;
}
main .team .teamer .team-members .member {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    box-shadow: 4px 4px #000000;
    transition: 0.35s ease;
    border: .082rem solid #000000;
}
main .team .teamer .team-members .member:hover {  
    transform: rotate(10%);
    transform: translate(2px, 2px);
    box-shadow: none;
}
main .team .teamer .team-members .member .info-popup {
    position: absolute;
    padding: 0vw 1vw;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0%;
    gap: 1vw;
    background: linear-gradient(rgba(0, 0, 0, 0), black);
    z-index: 100;
    transition: 0.5s ease;
}
main .team .teamer .team-members .member:hover .info-popup {
    height: 80%;
}
main .team .teamer .team-members .member .info-popup h3{
    font-size: 3vw;
    font-weight: 100;
    letter-spacing: 0.1vw;
    color: white;
    padding: 0;
    margin: 0;
    margin-top: 5rem;
}
main .team .teamer .team-members .member .info-popup p {
    font-size: 1.25vw;;
    padding-top: 2%;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
main .team .teamer .team-members .member .info-popup .socials {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 1vw;
    padding-top: 5%;
}
main .team .teamer .team-members .member .info-popup .socials a {
    border-radius: 100%;
    background: #B7FCB1;
    box-shadow: 4px 4px #ffffff;
    display: flex;
    height: 1.5vw;
    width: 1.5vw;
    padding: 1.6392rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.9375remrem;
    border: .082rem solid #000000; 
    transition: .35s ease;
    background-size: cover;
}
main .team .teamer .team-members .member .info-popup .socials a:hover {
    box-shadow: none;
    background-color: #65fc57;
    transform: translate(2px, 2px);
}
main .team .teamer .team-members .member .cholian {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: 0.5s ease;
}
main .team .teamer .team-members .member:hover .cholian {
    scale: 1.15;
}
main .team .teamer .team-members .member .cholian img {
    width: 100%;
    height: 100%;
} */


main .faq {
    position: relative;
    height: auto;
    background-color: #9A2FBE;
    display: flex;
    justify-content: center;
    padding: 3rem 10rem 5vw 10rem;
    width: 100%;
    margin: auto;
}
main .faq #faq {
    text-shadow: 0.3rem 0.3rem black;
    color: white;
    transform: translateX(-15vw);
}
main .faq .faq-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    margin: auto;
    margin-top: 12vw;
    width: 80%;
    left: 0;
    transform: translateX(-10%);
    padding: 0rem 9rem;
}
main .faq .faq-list .faq-block {
    background-color: #b7fcb12e;
    width: 100%;
    margin: 1vw;
    height: auto;
    border-radius: 20px;
    color: black;
    display: block;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #B7FCB1;
}
main .faq .faq-list .faq-block h3,
main .faq .faq-list .faq-block p {
    position: relative;
    left: 2vw;
    padding-right: 5rem;
}
main .faq .faq-list .faq-block h3 {
    font-size: 2vw;
    font-weight: 100;
    letter-spacing: 0.1vw;
    margin-bottom: -0.4vw;
}
 .faq-list .faq-block p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.25vw;
}
main .faq .socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 3vw;
    padding-top: 5rem;
}
main .faq .socials a {
    border-radius: 100%;
    background: #B7FCB1;
    box-shadow: 4px 4px #ffffff;
    display: flex;
    height: 3vw;
    width: 3vw;
    padding: 3.6392rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.9375remrem;
    border: .082rem solid #9A2FBE; 
    transition: .35s ease;
    background-size: cover;
}
main .faq .socials a:hover {
    box-shadow: none;
    background-color: #65fc57;
    transform: translate(2px, 2px);
}
main .faq .copyright {
    font-size: 2vw;
    font-weight: 100;
    letter-spacing: 0.1vw;
    color: white;
}


@media screen and (max-width: 1040px) {
    main .hero-section .hero-alien {
        position: absolute;
        right: -2rem;
        bottom: 10vw;
        width: 60vw;
    }
    main .hero-section .hero-content {
        position: absolute;
        left: 9rem;
        top: 10%;
        justify-content: space-between;
        display: flex;
        gap: 20vw;
        width: 100%;
        transition: 25s ease;
        /* display: flex;
        justify-content: flex-end;
        flex-direction: column; */
    }
    main .about-us {
       margin-top: -200px;
    }
    main .tokenomics .pie-chart img {
       transform: scale(1.5);
    }
    main .roadmap {
        margin-top: -105%;
        transition: 0.5s ease;
    }
}

@media (max-width: 576px) {
    body {
        background-color: #9A2FBE;
    }
    .scrolling-headline {
        gap: 10rem;
    }
    .scrolling-headline p {
        font-size: 0.7rem;
    }
    header {
        z-index: 2000;
        padding: 2rem 0rem 0rem 2rem;
        /* background-color: #9a2fbe63; */
        backdrop-filter: blur(6px);
        top: 20px;
        display: flex;
        flex-direction: row;
    }
    header .logo {
        z-index: 200;
    }
    header .logo img {
        width: 40%;
        height: auto;
    }
    header .nav-bar {
        border-radius: 100%;
        height: 60px;
        width: 60px;
        position: absolute;
        right: 2rem;
        top: 32%;
        overflow: hidden;
        border: 1px solid #9A2FBE;
        box-shadow: 3px 3px white;
        transition: .35s ease;
        cursor: pointer;
        z-index: 200;
        visibility: visible;
    }
    header .nav-bar:hover {
        box-shadow: none;
        transform: translate(2px, 2px);
    }
    header .nav-bar:hover .hamburger {
        background-color: #65fc57;
    }
    header .nav-bar .hamburger {  
        display: flex;
        flex-direction: column;
        background-color: #B7FCB1;
        width: 100%;
        height: 100%;
        gap: 5px;
        align-items: center;
        justify-content: center;
        overflow: visible;
        transition: .35s ease;
    }
    header .nav-bar .hamburger div {
        height: 2px;
        width: 40px;
        background-color: #9A2FBE;
        overflow: visible;
    }
    header .close-bar {
        border-radius: 100%;
        height: 60px;
        width: 60px;
        position: absolute;
        right: 2rem;
        top: 32%;
        overflow: hidden;
        border: 1px solid #9A2FBE;
        box-shadow: 3px 3px white;
        transition: .35s ease;
        cursor: pointer;
        visibility: hidden;
        z-index: 200;
    }
    header .close-bar:hover {
        box-shadow: none;
        transform: translate(2px, 2px);
    }
    header .close-bar:hover .close-icon {
        background-color: #65fc57;
    }
    header .close-bar .close-icon {  
        display: flex;
        flex-direction: column;
        background-color: #B7FCB1;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        overflow: visible;
        transition: .35s ease;
    }
    header .close-bar .close-icon div {
        height: 2px;
        width: 40px;
        background-color: #9A2FBE;
        overflow: visible;
    }
    header .close-bar .close-icon div:first-of-type {
        transform: rotate(45deg);
    }
    header .close-bar .close-icon div:nth-of-type(2) {
        transform: rotate(-45deg);
    }
    header .nav-list {
        position: absolute;
        height: 70vh;
        width: 100%;
        top: -150vw;
        left: 0;
        z-index: 100;
        /* background-color: red; */
        background-color: #9A2FBE;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        box-shadow: 0px 4px 50px #00000087;
        transition: 1s ease;
    }
    header .nav-list ul {
        position: relative;
        top: 30%;
        left: -5%;
        font-size: 1.25rem;
        font-weight: 400;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: -5%;
    }
    header .nav-list ul li a{
        font-size: 3rem;
        font-weight: 400;
        color: white;
    }
    header .nav-list ul .buy-button {
        border-radius: 10px;
        height: 50px;
        font-size: 20px;
        position: relative;
        width: 60vw;
    }
    main {
        top: 2rem;
        position: relative;
        width: 100%;
        overflow: hidden;
        height: auto;
    } 
    main h1:not(#first-h1) {
        font-size: 10vw;
        text-align: center;
    }
    main .hero-section {
        top: 0;
        left: 0;
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
        height: 100vh;
    }
    main .hero-section .hero-background {
        margin-top: -20%;
    }
    main .hero-section .ellipse {
        transform: translate(0%, 0%);
        width: 100vw;
    }
    main .hero-section .hero-alien {
        margin: auto;
        bottom: 30%;
        right: 25px;
        margin-left: 0;
        transform: scale(1.2);
    }
    main .hero-section .alien-spaceship {
        left: -4rem;
        margin-top: 30%;
        width: 70vw;
    }
    main .hero-section .hero-content {
        position: absolute;
        display: flex;
        justify-content: flex-start;
        gap: 0px;
        flex-direction: column;
        left: 0;
        padding-left: 2rem;
        top: -180px;
    }
    main .hero-section .hero-content h1 {
        font-size: 0.8rem;
        position: static;
    }
    main .hero-section .hero-content h1 span:first-of-type {
        font-size: 1.2rem;
    }
    main .hero-section .hero-content h1 span:nth-of-type(2) {
        font-size: 1.2rem;
    }
    main .hero-section .hero-content h6 {
        font-size: 5.2rem;
        text-shadow: 0.3rem 0.3rem #9A2FBE;
        position: static;
        margin: 0;
    }
    main .hero-section .hero-content p {
        font-size: 0.9rem;
        position: static;
        width: 320px;
    }
    main .hero-section .hero-content a {
        border-radius: 10px;
        height: 50px;
        font-size: 20px;
        position: static;
        width: 50vw;
    }
    main .hero-section .moblie-cholian {
        margin: auto;
        bottom: 20%;
    }
    main .about-us {
        z-index: 100;
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
        text-align: center; /* Center text inside the container */
        position: relative; /* For background positioning */
        padding: 6rem 2rem; /* Ensure padding around the container */
        min-height: 100vh;
        height: auto;
    }
    main .about-us .about-header {
        text-shadow: 0.15rem 0.15rem #9A2FBE;
        font-size: 2rem; /* Adjust header size for mobile */
        font-weight: bold;
        margin-bottom: 1.5rem; /* Add space below the header */
        z-index: 1; 
        top: 6rem;
        text-align: center;
        transform: translateX(50%);
        position: relative;/* Ensure it sits above the background */
    }
    main .about-us .aboutus-background {
        scale: 1.5;
        top: 15%;
        width: 100%;
        height: 120vh;
    }
    main .about-us .aboutus-1,
    main .about-us .aboutus-2 {
        display: flex;
        flex-direction: column; /* Stack image and text */
        align-items: center; /* Center align the content */
        margin: 5rem 0; /* Space between sections */
        z-index: 1; /* Ensure it sits above the background */
    }
    main .about-us #aboutus-2 {
        flex-direction: column;
        margin-top: -5rem;
    }
    main .about-us .aboutus-1 img,
    main .about-us .aboutus-2 img {
        width: 100%; /* Image spans across the full width */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 0rem;/* Space below the image */
    }
    main .about-us p {
        font-size: 0.9rem; /* Reduce text size for mobile */
        line-height: 1.5;
        color: white; /* Text color for readability */
        max-width: 100%; 
        text-align: left;/* Allow text to span full width */
    }
    .aboutus-1 span {
        font-weight: bold;
        color: yellow; /* Highlighted text color */
      }
    main .tokenomics {
        margin-top: -10%;
        z-index: 100;
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
        height: 240vw; /* Full viewport height */
        background-image: url('src\orange background.svg'); /* Set the first image as background */
        background-size: cover; /* Ensure the background covers the entire div */
        background-position: center; /* Center the background image */
        text-align: center; /* Center text inside the div */
        padding: 4rem 2rem; /* Padding around the contaziner */
        position: relative; /* Ensure the pie chart and other elements are positioned on top of the background */
        box-sizing: cover; /* Ensure padding is included within the element’s total width/height */
    }
    main .tokenomics .tokenomics-background {
        scale: 1.5;
        top: 15%;
        width: 100%;
        height: 120vh;
    }
    main .tokenomics .tokenomics-header {
        z-index: 1; /* Ensure the heading appears above the background */
        margin-bottom: 1rem; 
        text-shadow: 0.15rem 0.15rem #9A2FBE;/* Add space between heading and pie chart */
    }
    main .tokenomics .pie-chart {
        position: static;
        width: 100%;
        margin-top: 8rem; /* Space between the heading and pie chart */
        z-index: 1; /* Ensure the pie chart appears above the background */
    }
    main .tokenomics .pie-chart #mobile-pizza {
        transform: scale(1.1); /* Maintain the aspect ratio */
        display: block; /* Ensure proper layout handling */
        margin: 0 auto;
        margin-top: 4;
    }
    #pieChartImage {
        display: none;
    }
    main .roadmap {
        margin-top: 0%;
        z-index: 100;
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
        height: 240vw; /* Full viewport height */
        background-color: #B7FCB1; /* Set the first image as background */
        background-size: cover; /* Ensure the background covers the entire div */
        background-position: center; /* Center the background image */
        text-align: center; /* Center text inside the div */
        /* padding: 9rem 2rem;  */
        position: relative; /* Ensure the pie chart and other elements are positioned on top of the background */
        box-sizing: cover; /* Ensure padding is included within the element’s total width/height */
    }
    main .roadmap h1 {
        text-shadow: 0.15rem 0.15rem #000000;
    }
    main .roadmap .desktop-roadmap {
        display: none;
    }
    main .roadmap .mobile-roadmap {
        display: block;
        margin-top: 60%;
        width: 100%;
        height: auto;
    }
    main .roadmap span {
        width: 10vw;
        height: 10vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    main .roadmap span img:first-of-type {
        scale: 0.7;
        margin-top: 30px;
    }
    main .roadmap .phase-1 {
        left: 4%;
        top: 29%;
    }
    main .roadmap .phase-1:hover {
        transform: translate(2px, 2px);
    }
    main .roadmap .phase-2 {
        left: 38.5%;
        top: 22%;
    }
    main .roadmap .phase-3 {
        left: 72.5%;
        top: 30%;
    }
    main .roadmap .phase-4 {
        left: 1.5%;
        top: 63%;
    }
    main .roadmap .phase-5 {
        left: 35.5%;
        top: 73%;
    }
    main .buy-token {
        z-index: 100;
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
        text-align: center; /* Center text inside the container */
        position: relative; /* For background positioning */
        padding: 6rem 2rem; /* Ensure padding around the container */
        height: 500px; /* Full viewport height */
        background: url("src/white\ bg.svg") no-repeat center center / cover;
        /* Use the first image as the background */
        overflow: visible; /* Prevent content from spilling out */
        background-size: cover;
    }
    main .buy-token h1 {
        margin-top: 16%;
        text-shadow: 0.3rem 0.3rem black;
        color: #0db6ee;
    }
    main .buy-token .buycholitos-background {
        scale: 1.5;
        top: 30%;
        width: 100%;
        height: 120vh;
    }
    main .buy-token h1 {
        margin-bottom: 1rem; 
        text-shadow: 0.15rem 0.15rem #000000;
    }
    main .buy-token .buy-image img {
        width: 120vw;
        left: -10%;
        height: auto;
        display: block;
        /* max-width: 100%; */
    }
    main .team {
        z-index: 100;
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
        text-align: center; /* Center text inside the container */
        position: relative; /* For background positioning */
        padding: 6rem 2rem 0rem 2rem; /* Ensure padding around the container */
        min-height: 100vh; /* Full viewport height */
        /* Use the first image as the background */
        overflow: hidden; /* Prevent content from spilling out */
        background-size: cover;
        height: 110vh;
    }
    main .team #team {
        text-shadow: 0.15rem 0.15rem #9A2FBE; /* Adjust header size for mobile */
        font-weight: bold;
        margin-bottom: 1.5rem; /* Add space below the header */
        z-index: 1; 
        text-align: center;
        top: 4rem;
        left: 45%;
        position: absolute;
    }
    main .team .team-embers {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
        gap: 0rem; /* Add spacing between images */
        align-items: baseline;
        justify-items: center;
        width: 100%;
        position: relative;
        margin-left: -14%;
        top: -5%;
    }
    
    /* Styling for team member images */
    main .team .team-embers img {
        width: 80%; /* Each image takes 50% of the container width, minus 2rem for spacing */
        max-width: 100rem; /* Ensure the image doesn't exceed the parent width */
        height: auto; /* Maintain the aspect ratio */
        border-radius: 0px;
    }
    main .team .team-embers img:nth-of-type(3) {
        margin-top: 2rem;
    }
    main .team a {
        border-radius: 10px;
        height: 50px;
        font-size: 20px;
        width: 100%;
        position: absolute;
        bottom: 6%;
        border-radius: 10px;
        height: 50px;
        font-size: 20px;
        width: 40vw;
        left: 15%;
    }
    main .faq {
        z-index: 100;
        display: flex;
        flex-direction: column;  /* Center horizontally */
        justify-content: center;
        align-items: center; /* Center text inside the container */
        position: relative; /* For background positioning */
        padding: 4rem 2rem; /* Ensure padding around the container */
        min-height: 100vh; 
        overflow: hidden; 
        height: auto;
        z-index: 1000;
        left: 0;
    }
    main .faq #faq {
        text-shadow: 0.15rem 0.15rem #000000;
        color: white;
        font-size: 3rem; /* Adjust header size for mobile */
        font-weight: bold;
        margin-bottom: 1.5rem; /* Add space below the header */
        z-index: 1; 
        top: 0rem;
        transform: translateX(-50%);
        position: static;
    }
    main .faq .faq-list {
        padding: 2rem;
        position: relative;
    }
    main .faq .faq-list .faq-block {
        border-radius: 10px;
        padding: 0 2px;
        align-items: center;
        margin-bottom: 2rem;
    }
    main .faq .faq-list .faq-block h3,
    main .faq .faq-list .faq-block p {
        left: 5vw;
    }
    main .faq .faq-list .faq-block h3 {
        font-size: 5vw;
        width: 90%;
        margin-top: 1rem;
    }
    main .faq .faq-list .faq-block p {
        font-size: 0.9rem; /* Reduce text size for mobile */
        line-height: 1.5;
        color: #000000; /* Text color for readability */
        max-width: 100%; 
        text-align: left;
        width: 90%;
    }
    main .faq .socials a {
        margin-top: 10%;
        padding: 3rem;
    }
    main .faq .copyright {
        font-size: 4vw;
    }
    main .blur-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        visibility: hidden;
        transition: .2s ease;
        background-color: rgba(0, 0, 0, 0.403);
        backdrop-filter: blur(10px);
        overflow: visible;
    }
    /* Popup container */
    main .blur-bg #phase-popup {
        width: 90%;
        max-width: 100%;
        gap: -10rem;
        padding: 0rem 2rem 4rem 2rem;
    }
    main .blur-bg #phase-popup .phase-popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center; 
        flex-direction: row;
        position: relative;
        height: 8rem;
    }
    main .blur-bg #phase-popup .phase-popup-header .pop-up-header-span {
        width: 2rem;
        padding: 1.6392rem 1.6392rem;
        display: none;
    }
    main .blur-bg #phase-popup .phase-popup-header h2 {
        font-size: 8vw;
    }
    main .blur-bg #phase-popup .phase-popup-header .cancel-button {
        box-shadow: 2px 2px white;
        border-radius: 10px;
        height: 2rem;
        width: 2rem;
    }
    main .blur-bg #phase-popup .phase-popup-header .cancel-button img {
        width: 4vw;
        pointer-events: none;
    }
    main .blur-bg #phase-popup .phase-popup-body {
        padding-right: 0;
    }
    main .blur-bg #phase-popup .phase-popup-body img {
        display: none;
    }
    main .blur-bg #phase-popup .phase-popup-body ul {
        width: 100%;
    }
    main .blur-bg #phase-popup .phase-popup-body ul li {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-header {
      font-size: 1.8rem; /* Further reduce header size */
    }
  
    .aboutus-1 img,
    .aboutus-2 img {
      width: 100%; /* Images already span full width */
    }
  
    .aboutus-1 p,
    .aboutus-2 p {
      font-size: 0.8rem; /* Adjust text size */
    }
  }